home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Utilities Experience
/
The Utilities Experience - Volume 1.iso
/
software
/
comms
/
html-heaven
/
arexx
/
html-frexxed.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-01-08
|
536b
|
19 lines
/* HTML-Helper Arexx script for FrexxEd
* Ver : 1.0 (7th January 1996)
* Copyright: Michiel Willems (InterNet: michiel@aobh.xs4all.nl)
* Function : Pass on the HTML commands from HTML-Helper to FrexxEd.
* Input : HTMLCMD - The HTML command to be inserted.
*/
OPTIONS RESULTS /* enable return codes */
PARSE ARG MYCMD HTMLCMD
HTMLCMD = SUBSTR(HTMLCMD,2, LENGTH(HTMLCMD)-1) /* strip leading space */
Portname = 'FREXXED.1'
ADDRESS VALUE PortName
'
WindowToFront();
Output('HTMLCMD');
'